home *** CD-ROM | disk | FTP | other *** search
/ Ray Dream Studio 5 / Ray Dream.iso / pc / DreamSDK / Macintosh / Include / cchooser.r < prev    next >
Encoding:
Text File  |  1997-07-09  |  1.0 KB  |  46 lines

  1. /* $Id: cchooser.r 1.3 1997/04/23 23:39:46 JOEL-PC Exp $ */
  2.  
  3. #ifndef __CCHOOSERR__
  4. #define __CCHOOSERR__
  5.  
  6. #ifndef __TYPES.R__  
  7. #include "Types.r" 
  8. #endif 
  9.  
  10. #include "CCDefs.h"
  11.  
  12. include "CCViews.rsc" 'View';
  13. include "CCViews.rsc" 'STR#';
  14. include "CCViews.rsc" 'TxSt';
  15. include "CCViews.rsc" 'icl8';
  16.  
  17. resource 'TBAR' (2661, "Add/Remove Buttons", purgeable) {
  18.     "",
  19.     {
  20.         2600, noKey, kaAddComponent, "Add Component";
  21.         2601, noKey, kaRemoveComponents, "Remove Selected Components";
  22.         tSeparator, nokey, noAction, "";
  23.     }
  24.  
  25. };
  26.  
  27. resource 'STR#' (2660, "CChooser None", purgeable) {
  28.     {
  29.         "None",
  30.     };
  31. };
  32.  
  33. resource 'CMNU' (mMultipleComponentContext, "", purgeable) { 
  34.     mMultipleComponentContext,    textMenuProc,    0, enabled,
  35.     "",
  36.     {
  37.         "Add Component", noIcon, noKey,    noMark, plain, kaAddComponent;
  38.         "Remove Selected Components", noIcon, noKey,    noMark, plain, kaRemoveComponents;
  39.         "-", noIcon, noKey,    noMark, plain, 0;
  40.         "Collapse all", noIcon, noKey,    noMark, plain, kaCollapseAllComponents;
  41.         "Expand all", noIcon, noKey,    noMark, plain, kaExpandAllComponents;
  42.     }
  43. };
  44.  
  45. #endif
  46.